home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OctaMED Sound Studio 1
/
OctaMED SoundStudio V1.iso
/
docs
/
rexx
/
killblock.omed
< prev
next >
Wrap
Text File
|
1996-06-18
|
773b
|
34 lines
/* Kill block */
'wi_request "Kill block?" "Full block|Only following notes|Cancel" var answer'
select
when answer=2 then do
op_update off
ed_getcurrtrack var currtrack
ed_getnumtracks var numtracks
ed_goto line currline track 0
do until numtracks=0
'ed_killnotes currtrack'
ed_gototrack nextnote
numtracks=numtracks-1
end
ed_goto track currtrack
op_update on
wi_showstring "Killed."
end
when answer=1 then do
op_update off
ed_getcurrline var currline
ed_getcurrtrack var currtrack
ed_getnumtracks var numtracks
ed_goto line 0 track 0
do until numtracks=0
'ed_killnotes currtrack'
ed_gototrack nextnote
numtracks=numtracks-1
end
ed_goto line currline track currtrack
op_update on
wi_showstring "Killed."
end
otherwise
end